home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Misc / Wood.0.72 / Sources / InfoView.h < prev    next >
Encoding:
Text File  |  1995-09-10  |  740 b   |  38 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface InfoView:View
  5. {
  6.     id buffer;
  7.     id strings; 
  8.     NXSize imageSize,batSize;
  9.     id image,oldImage,frontImage;
  10.     unsigned int animationStep;
  11.     BOOL animationCrowl, frontPage;
  12.     BOOL animationDissolve;    
  13.     DPSTimedEntry animateTe;
  14.     float delta;
  15.     NXRect batRect;
  16.     id bat;
  17.     id batSound;
  18.     int randDirection;
  19.     BOOL toggle;
  20. }
  21.  
  22. - initFrame:(NXRect *)frameRect;
  23. - free;
  24. - compositeWithDissolve:(BOOL)aBool andDelta:(float)aDelta;
  25. - compositeWithChecker:(BOOL)aBool andDelta:(float)aDelta;
  26. - drawSelf:(NXRect *)rects :(int)rectCount;
  27. - mouseDown:(NXEvent *) thisEvent;
  28. - start:sender;
  29. - stop:sender;
  30. - animationClick;
  31. - animateCrowl;
  32. - animateDissolve;
  33. - drawBackground:(NXRect *)rect;
  34. - removeTe;
  35. - woodPage:sender;
  36.  
  37. @end
  38.